home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Programming / ClassMate / ReadMe.first < prev    next >
Text File  |  1997-10-05  |  825b  |  36 lines

  1. Before you use ClassMate copy the ClassMate.h include file to
  2. your include: directory.  This file is required for ClassMate source
  3. code to compile.
  4.  
  5. Also included is the textfieldauto.o in the object directory.
  6. This is the auto initialization for opening textfield gadget
  7. library.  You can copy this to your lib: directory if you want it.
  8.  
  9. ClassMate uses the requster.class.  If you do have it please get
  10. a copy from the ftp site.
  11.  
  12. Included are some demo files created using ClassMate.  Select the
  13. Load button in ClassMate to load the file.
  14.  
  15.  
  16.  
  17. Sample Makefile:
  18.  
  19. #
  20. # Makefile 
  21. #
  22. .c.o:
  23.     @Echo "*e[33;1m  sc $(CFLAGS) $<*e[0m" 
  24.     sc $(CFLAGS) $*.c
  25. #
  26. #
  27. OBJS = myprogram.o
  28.  
  29. am: $(OBJS)
  30.  
  31.    Slink  lib:cback.o, lib:textfieldauto.o $(OBJS)\
  32. TO myprogram lib lib:classmate.lib lib:classact.lib lib:sc.lib\
  33. lib:scm.lib lib:amiga.lib
  34.  
  35.  
  36.